home *** CD-ROM | disk | FTP | other *** search
- global gqtvrinstance, roomnumber, codelist, objectpict, newfile, objnamesprite, light, pointx, pointy, vrflag, objmarker
-
- on InitPanoCallbacks
- if isqtvrmovie(gqtvrinstance) then
- qtvrsetrolloverhotspothandler(gqtvrinstance, "RolloverHotSpotHandler")
- qtvrsetmousestilldownhandler(gqtvrinstance, "MouseStillDownHandler")
- end if
- end
-
- on rolloverhotspothandler pHotSpotID
- set nodeid to qtvrgetnodeid(gqtvrinstance)
- if length(string(nodeid)) = 1 then
- set nodeid to "0" & string(nodeid)
- end if
- set newfile to getaProp(codelist, nodeid & pHotSpotID)
- if (pHotSpotID <> 0) and not voidp(newfile) then
- set vrflag to value(the last char in newfile)
- set newfile to char 1 to 6 of newfile
- puppetSprite(objnamesprite, 1)
- set smallpict to "A" & newfile & "1"
- set objecttext to newfile
- if vrflag = 1 then
- set the visible of sprite objmarker to 1
- put newfile into field "Current Object"
- else
- set the visible of sprite objmarker to 0
- end if
- if (the number of member smallpict > 0) and (the number of member objecttext > 0) then
- set the visible of sprite objectpict to 1
- set the visible of sprite light to 1
- set the visible of sprite objnamesprite to 1
- swapmember(objectpict, smallpict, 1)
- swapmember(objnamesprite, objecttext)
- if the right of sprite objnamesprite > 640 then
- set the locH of sprite objnamesprite to the locH of sprite objnamesprite - 15
- end if
- updateStage()
- end if
- else
- qtvrexitmouseover(gqtvrinstance)
- set the visible of sprite objmarker to 0
- set the visible of sprite objectpict to 0
- puppetSprite(objnamesprite, 0)
- set the visible of sprite light to 0
- end if
- end
-
- on mousestilldownhandler
- if isqtvrmovie(gqtvrinstance) then
- set nodeid to qtvrgetnodeid(gqtvrinstance)
- end if
- compass(360 - qtvrgetpanangle(gqtvrinstance) + getAt(anglelist, nodeid), 20, pointx, pointy)
- end
-
- on nodeleavehandler
- set panAngle to the text of member "PanAngle"
- set tiltAngle to the text of member "TiltAngle"
- set FOV to the text of member "FOV"
- set quality to the text of member "Quality"
- SetMovieView(panAngle, tiltAngle, FOV, "3", "1", quality)
- set tfov to qtvrgetfov(gqtvrinstance)
- repeat while tfov > 30
- set tfov to tfov - 5
- qtvrsetfov(gqtvrinstance, string(tfov))
- qtvrupdate(gqtvrinstance)
- end repeat
- end
-